/* ============================================================
   ABOUT PAGE (ABOUT.PHP) – PREMIUM CINEMATIC REDESIGN
   ============================================================ */

body {
    background: #fdfcfb;
    color: #0B233F;
    font-family: "NeueHaas", sans-serif;
    overflow-x: hidden;
}

/* ---------- PREMIUM HERO ---------- */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: url('../image/aboutback.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 35, 63, 0.45), #fdfcfb);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-family: "Rockwell", serif;
    font-size: clamp(42px, 8vw, 96px);
    color: #0B233F;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
}

/* ---------- AUTHOR SHOWCASE ---------- */
.author-showcase {
    padding-bottom: 0px;
}

.author-showcase-item {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    overflow: hidden;
}

/* Cinematic Background Portrait Blur */
.author-bg-blur {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.12;
    background-size: cover;
    background-position: center;
    filter: blur(80px);
    transform: scale(1.1);
    pointer-events: none;
}

.author-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1400px;
    width: 100%;
}

.author-showcase-item:nth-child(even) .author-inner {
    flex-direction: row-reverse;
}

/* Portrait Column */
.author-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 2000px;
}

.author-img-col img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    box-shadow: -30px 40px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    /* transform: rotateY(-15deg) rotateX(8deg); */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.author-showcase-item:nth-child(even) .author-img-col img {
    transform: rotateY(15deg) rotateX(8deg);
    box-shadow: 30px 40px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.author-showcase-item:hover .author-img-col img {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

/* Biography Column */
.author-info-col {
    flex: 1.3;
}

.author-info-col .author-label {
    display: inline-block;
    color: #D8993A;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 50px;
}

.author-info-col .author-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #D8993A;
}

.author-info-col h2 {
    font-family: "Rockwell", serif;
    font-size: clamp(36px, 5vw, 64px);
    color: #0B233F;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.author-info-col .author-bio {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 650px;
}

/* Decorative Gold Detail */
.author-divider {
    width: 60px;
    height: 4px;
    background: #D8993A;
    border: none;
    margin-bottom: 30px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .author-inner {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .author-showcase-item {
        min-height: auto;
        padding: 80px 20px;
    }

    .author-inner,
    .author-showcase-item:nth-child(even) .author-inner {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .author-info-col .author-bio {
        margin-left: auto;
        margin-right: auto;
    }

    .author-info-col .author-label {
        padding-left: 0;
    }

    .author-info-col .author-label::before {
        display: none;
    }

    .author-img-col img,
    .author-showcase-item:nth-child(even) .author-img-col img {
        transform: rotate(0) !important;
        max-width: 300px;
    }
}